home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / easytp / test.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-12-18  |  962 b   |  34 lines

  1. VERSION 4.00
  2. Begin VB.Form frmTest 
  3.    Caption         =   "EasyTip Test"
  4.    ClientHeight    =   1830
  5.    ClientLeft      =   3795
  6.    ClientTop       =   2070
  7.    ClientWidth     =   3840
  8.    Height          =   2235
  9.    Left            =   3735
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   1830
  12.    ScaleWidth      =   3840
  13.    Top             =   1725
  14.    Width           =   3960
  15.    Begin VB.CommandButton Command1 
  16.       Caption         =   "Rest Mouse Here"
  17.       Height          =   375
  18.       Left            =   840
  19.       TabIndex        =   0
  20.       Tag             =   "this is the tooltip"
  21.       Top             =   660
  22.       Width           =   2115
  23.    End
  24. Attribute VB_Name = "frmTest"
  25. Attribute VB_Creatable = False
  26. Attribute VB_Exposed = False
  27. Option Explicit
  28. Private Sub Form_Load()
  29.    Load frmEasyTip
  30. End Sub
  31. Private Sub Form_Unload(Cancel As Integer)
  32.    Unload frmEasyTip
  33. End Sub
  34.